(>) 大于 : $gt
(<) 小于 : $lt
(>=) 大于等于 :$gte
(<= ) 小于等于 :$lte
db.user.find({count : {$gt : 10}}) //查询数量大于10的数据
db.user.find({count : {$lt : 10}})
db.user.find({count : {$gte : 10}})
db.user.find({count : {$lte : 10}})
db.user.find({$and:[{'count':10},{'_id':ObjectId('62a47876d1ea4a0b8963327b')}]})
相当于
select * from user where _id='62a47876d1ea4a0b8963327b' and count=10
db.user.find({$or:[{'count':10},{'count':20}]})
db.user.find({$or:[{$and:[{'count':10},{'_id':ObjectId('62a47876d1ea4a0b8963327b')}]},{'count':{$gte:10}}]})
相当于
select * from user where (count=10 and _id='62a47876d1ea4a0b8963327b') or count>=10